Vortex Comunity
Cargando juegos...
`; container.appendChild(gameDiv); }); } fetch('games.json') .then(res => res.json()) .then(data => { juegos = data; renderJuegos(); document.getElementById('search').addEventListener('input', e => { renderJuegos(e.target.value); }); }) .catch(err => { document.getElementById('game-list').innerText = 'Error al cargar la lista! Contacta por Discord si pasa seguido.'; console.error(err); });